home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / rexx / 268 < prev    next >
Encoding:
Text File  |  1996-08-06  |  1.5 KB  |  59 lines

  1. Path: URANUS.YZIT.EDU.TW!s814128
  2. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  3. Newsgroups: comp.lang.rexx
  4. X-Mailer: PMMail v1.1 UNREGISTERED SHAREWARE
  5. Message-ID: <9601142037.AA25262@uranus.yzit.edu.tw>
  6. Date: Mon, 15 Jan 1996 04:43:57 EST
  7. Sender: REXX Programming discussion list <REXXLIST@uga.cc.uga.edu>
  8. From: Yi-yih TsayTHREE <s814128@URANUS.YZIT.EDU.TW>
  9. Subject: REXX and CGI
  10.  
  11. Hi. all.
  12.  
  13.    I am using REXX/IMC to write CGI funtion.
  14.    Now, I have a question. When I write the html file as follows.
  15.  
  16.    =================
  17.    ..........
  18.    <FORM ACTION="http://XXX/test.cmd" method=post >
  19.    <input ..... ">
  20.     ..
  21.    </FORM>
  22.    =================
  23.  
  24.    And  test.cmd is shown as follows.
  25.  
  26.    =================
  27.    ...
  28.    length = GETENV("CONTENT-LENGTH")
  29.    buffer = charin(,1,length)
  30.    say "length = " length
  31.    say "buffer = " buffer
  32.    ....
  33.    =================
  34.  
  35.    But when I run the test.cmd , it always show
  36.  
  37.    length = XX (xx is right number)
  38.    buffer =    (NOTHING!!)
  39.  
  40.    In perl, I know I can use [ read(STDIN,$BUFFER,$ENV{'CONTENT_LENGTH'}) ]
  41.    to store the content in BUFFER.
  42.  
  43.    But ,how can I make it in REXX/IMC ?
  44.    Am I doing something wrong?
  45.  
  46.    Any suggestion is appreciated .
  47.  
  48.    PS1. I can use to "METHOD=GET" to get the content, but it's not a good
  49.        idea.
  50.    PS2. My WEB server is based on Linux using NCSA HTTPD.
  51.  
  52.  
  53. ---
  54. THREE YZCNPA (YuanZe Insitute of Technology Campus Network Promote Assosiation )
  55. [ TEAM-OS2]
  56.  EMAIL:s814128@moon.yzit.edu.tw
  57. ftp://ftp-cnpa.yzit.edu.tw/OS2
  58.  http://ftp-cnpa.yzit.edu.tw
  59.